home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / gd25s.zip / CHANGELO < prev    next >
Text File  |  1993-10-08  |  56KB  |  1,463 lines

  1. Mon Sep 27 00:23:37 1993  Paul Eggert  (eggert@twinsun.com)
  2.  
  3.     * Version 2.5 released.
  4.  
  5.     * analyze.c (diff_2_files): Work around memcmp bug with size=0.
  6.  
  7.     * cmp.c (main, usage, version_string): Add --version option.
  8.     * Makefile.in (cmp): Add version.o.
  9.  
  10.     * diff.c (add_exclude_file): Cast memchr to (char *)
  11.     to suppress bogus warnings on some nonstandard hosts.
  12.     * sdiff.c (lf_copy, lf_skip, lf_snarf): Likewise.
  13.  
  14.     * diff3.c, sdiff.c, util.c (xmalloc, xrealloc): Cast malloc, realloc
  15.     to (VOID *) to suppress bogus warnings on some nonstandard hosts.
  16.  
  17.     * sdiff.c, util.c (memchr): Make first arg char const *
  18.     to match standard.
  19.  
  20.     * system.h (malloc, realloc): Declare only if !HAVE_STDLIB_H.
  21.     (memchr): Declare only if !HAVE_MEMCHR.  These changes are
  22.     needed to keep some nonstandard hosts happy.
  23.  
  24.     * xmalloc.c: Include <sys/types.h> always; some nonstandard hosts
  25.     need it for size_t even if STDC_HEADERS.
  26.  
  27. Sat Sep 18 01:33:07 1993  Paul Eggert  (eggert@twinsun.com)
  28.  
  29.     * configure.in (AC_STAT_MACROS_BROKEN): Add.
  30.     * system.h (S_IS{BLK,CHR,DIR,FIFO,REG,SOCK}): Fix defns if
  31.     STAT_MACROS_BROKEN.
  32.  
  33.     * Makefile.in (diff3, sdiff, cmp): Do not link $(ALLOCA).
  34.  
  35.     * analyze.c (discard_confusing_lines): Make defn static, like decl.
  36.     * sdiff.c (xmalloc): Likewise.
  37.  
  38.     * ifdef.c (format_group): Ensure isdigit argument isn't < 0.
  39.  
  40.     * side.c (print_half_line): Use isprint, since some hosts lack isgraph.
  41.     * util.c (output_1_line): Likewise.  Ensure its argument isn't < 0.
  42.     (xmalloc, xrealloc): Remove needless casts.
  43.  
  44.     * system.h (volatile, const):
  45.     Define these before including any system headers,
  46.     so that they're used consistently in all system includes.
  47.     (getenv, malloc, realloc): Declare even if HAVE_STDLIB_H, since some
  48.     <stdlib.h>s don't declare them.
  49.     (memchr): Likewise for <string.h>.
  50.  
  51.     * cmp.c, diff3.c, diff.h, sdiff.c: Include "system.h" first.
  52.     * diff.c: Remove redundant "system.h" inclusion.
  53.  
  54.     * diff3.c (xmalloc): Now static.
  55.     (xmalloc, realloc): Remove needless casts.
  56.     (READNUM): Ensure isdigit argument isn't negative.
  57.  
  58. Wed Sep 14 07:14:15 1993  Paul Eggert  (eggert@twinsun.com)
  59.  
  60.     * Version 2.4 released.
  61.  
  62.     * ifdef.c (scan_char_literal): New function, for new %c'x' and
  63.     %c'\ooo' format specs.
  64.     (format_group, print_ifdef_lines): Use it.  Remove %0 format spec.
  65.  
  66.     * cmp.c (cmp): Don't try to read past end of file; this doesn't
  67.     work on ttys.
  68.  
  69.     * system.h, version.c: #include <config.h>, not "config.h", to allow
  70.     configuring in a separate directory when the source directory has
  71.     already been configured.
  72.     * Makefile.in (COMPILE): New defn, with proper -I options so that
  73.     `#include <config.h>' works.
  74.     (.c.o, diff3.o, sdiff.o): Use it.
  75.  
  76. Mon Sep 13 06:45:43 1993  Paul Eggert  (eggert@twinsun.com)
  77.  
  78.     * diff.c (main, longopts): Add --line-format=FORMAT option.
  79.     (specify_format): Args no longer const pointers.  All callers changed.
  80.  
  81.     * ifdef.c: Add support for %?c, %(A=B?T:E), PRINTF_SPECn formats.
  82.     (struct group): New struct.
  83.     (print_ifdef_lines): Use it to simplify argument passing.
  84.     Remove the convention that last arg -1 signifies that the lines
  85.     from file 2 are the same as the lines from file 1; this
  86.     convention no longer works, now that line numbers might be
  87.     printed out, since the line numbers may differ.
  88.     Add first FILE * argument to output to.  All callers changed.
  89.     Use a faster test for the single-fwrite optimization.
  90.     (format_group, scan_printf_spec, groups_letter_value): New functions.
  91.  
  92.     * diff.h (group_format, line_format): No longer const pointers.
  93.     (format_ifdef): 1st arg is no longer const pointer.
  94.  
  95.     * configure.in: Configure HAVE_LIMITS_H, HAVE_STDLIB_H.
  96.     * system.h <limits.h>, <stdlib.h>, <string.h>:
  97.     Include only if HAVE_LIMITS_H etc.
  98.  
  99.     * system.h (memcmp, memcpy, strchr, strrchr, struct dirent): Prefer
  100.     these standard names to the traditional names (bcmp, bcpy, index,
  101.     rindex, struct direct).  All callers changed.
  102.  
  103.     * system.h (PARAMS, VOID):
  104.     Define earlier so that malloc decl can use VOID.
  105.     (STAT_BLOCKSIZE): Simplify ersatz defn; just use 8K.
  106.  
  107. Fri Sep  3 00:21:02 1993  Paul Eggert  (eggert@twinsun.com)
  108.  
  109.     * diff.c (compare_files): Two files with the same name must be
  110.     the same file; avoid a needless `stat' in that case.
  111.  
  112. Fri Aug 27 06:59:03 1993  Paul Eggert  (eggert@twinsun.com)
  113.  
  114.     * Pervasive changes for portability to 64-bit hosts:
  115.     Add prototypes to function declarations.
  116.     Use size_t, not int, when needed.
  117.  
  118.     * Other pervasive changes:
  119.     Use `const' more often.
  120.     Use STD{IN,OUT,ERR}_FILENO instead of [012].
  121.     Use 0, not NULL, for portability to broken hosts.
  122.  
  123.     * Makefile.in: (srcs, objs, distfiles, cmp): New files cmpbuf.[ch].
  124.     (distfiles): New files config.h.in, mkinstalldirs.
  125.     (.c.o): Add -DHAVE_CONFIG_H.
  126.  
  127.     * analyze.c: (diag): Pacify `gcc -Wall' with a useless assignment.
  128.     (diff_2_files): Use l.c.m., not max, of files' buffer sizes.
  129.  
  130.     * cmp.c: Make globals static when possible.
  131.  
  132.     (file): Now a 2-element array; replaces `file1' and `file2'.
  133.     (file_desc, buffer): Likewise, for file[12]_desc and buf[12].
  134.     (main): Likewise, for stat_buf[12].  Index these variables with `i'.
  135.  
  136.     (ignore_initial): New var.
  137.     (long_options): Now const.  Add `--ignore-initial'.
  138.     (usage): Sort options and add `--ignore-initial'.
  139.     (main, cmp): Add `--ignore-initial' support.
  140.  
  141.     (main): `cmp - -' now succeeds.
  142.     When comparing standard input to a file, and using a shortcut (e.g.
  143.     looking at file sizes or inode numbers), take the lseek offset into
  144.     account before deciding whether the files are identical.
  145.     Avoid mentioning `dev_t', `ino_t' for portability to nonstandard hosts.
  146.     Use l.c.m. of files' buffer sizes, not 8 * 1024.
  147.     ferror (stdout) does not imply errno has a useful value.
  148.     If 2nd file is "-", treat it first, in case stdin is closed.
  149.  
  150.     (cmp): Always compute `char_number', `smaller' for speed and simplicity.
  151.     Say `cmp: EOF on input', not `/usr/gnu/bin/cmp: EOF on input',
  152.     as per Posix.2.
  153.  
  154.     (block_compare_and_count): Increment line_number argument.
  155.     Remove end_char argument; it's always '\n'.  All callers changed.
  156.     Do not assume sizeof(long) == 4; this isn't true on some 64-bit hosts.
  157.     (block_compare): Minimize differences with block_compare_and_count.
  158.  
  159.     (block_read): Coalesce `bp += nread's.
  160.  
  161.     (printc): Remove `FILE *' arg; output to stdout.  All callers changed.
  162.  
  163.     * configure.in: Configure HAVE_SIGACTION, RETSIGTYPE, HAVE_VPRINTF.
  164.     Configure into config.h.
  165.  
  166.     * context.c (print_context_label):
  167.     Standard input's st_mtime is no longer a special case
  168.     here, since `compare_files' now sets it to the current time.
  169.  
  170.     * diff.c (usage): Sort options.
  171.     (filetype): New function.
  172.     (compare_files): Set stdin's st_mtime to be the current time.
  173.     Leave its name "-" instead of changing it to "Standard Input";
  174.     to test whether a file is stdin, we must compare its name to "-" instead
  175.     of its desc to 0, since if it's closed other file descs may be 0.
  176.     When comparing standard input to a file, and using a shortcut (e.g.
  177.     looking at file sizes or inode numbers), take the lseek offset into
  178.     account before deciding whether the files are identical.
  179.     Pretend that nonexistent files have the same filetype as existing files.
  180.     Rename `errorcount' to `failed', since it's boolean.
  181.     In directory comparisons, if a file is neither a regular file nor a
  182.     directory, just print its type and the other file's type.
  183.  
  184.     * diff.h (Is_space, textchar): Remove.
  185.     (struct msg, msg_chain, msg_chain_end): Move to util.c.
  186.     (VOID): Move to system.h.
  187.     (line_cmp, version_string, change_letter, print_number_range,
  188.     find_change): New decls.
  189.  
  190.     * diff.texi:
  191.     whitespace -> white space.  It now stands for whatever isspace yields.
  192.     Add --ignore-initial.
  193.  
  194.     * diff3.c (VOID): Move to system.h.
  195.     (version_string): Now char[].
  196.     (usage): Sort options.
  197.     (process_diff): Pacify `gcc -Wall' with a useless assignment.
  198.     (read_diff): pid is of type pid_t, not int.  Use waitpid if available.
  199.     (output_diff3): Simplify test for `\ No newline at end of file' message.
  200.  
  201.     * dir.c (struct dirdata): Rename `files' to `names' to avoid confusion
  202.     with external struct file_data `files'.
  203.  
  204.     * io.c (line_cmp): Move declaration to diff.h.
  205.     (textchar): Remove.
  206.     (find_and_hash_each_line): Use locale's definition of white space
  207.     instead of using one hardwired defn for -b and another for -w.
  208.  
  209.     * normal.c (change_letter, print_number_range, find_change):
  210.     Move decls to diff.h.
  211.     (print_normal_hunk): Now static.
  212.  
  213.     * sdiff.c (SEEK_SET): Move to system.h.
  214.     (version_string): Now char[], not char*.
  215.     (private_tempnam): Remove hardcoded limit on temporary file names.
  216.     (exiterr, perror_fatal, main): When exiting because of a signal,
  217.     exit with that signal's status.
  218.     (lf_refill, main, skip_white, edit, interact): Check for signal.
  219.     (ignore_SIGINT): Renamed from `ignore_signals'.
  220.     (NUM_SIGS, initial_handler): New macros.
  221.     (initial_action, signal_received, sigs_trapped): New vars.
  222.     (catchsig, trapsigs): Use sigaction if possible, since this closes the
  223.     windows of vulnerability that `signal' has.  Use RETSIGTYPE not void.
  224.     When a signal comes in, just set a global variable; this is safer.
  225.     (checksigs, untrapsig): New functions.
  226.     (edit): Pacify `gcc -Wall' with a useless assignment.
  227.     Respond to each empty line with help, not to every other empty line.
  228.     (private_tempnam): Remove hardcoded limit on temporary file name length.
  229.     Don't assume sizeof (pid_t) <= sizeof (int).
  230.  
  231.     * system.h: (S_IXOTH, S_IXGRP, S_IXUSR,
  232.     SEEK_SET, SEEK_CUR,
  233.     STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
  234.     New macros, if system doesn't define them.
  235.     (volatile): Don't define if already defined.
  236.     (PARAMS): New macro.
  237.     (VOID): Move here from diff.h.
  238.  
  239.     * util.c (struct msg, msg_chain, msg_chain_end): Moved here from diff.h.
  240.     (message5): New function.
  241.     (pr_pid): New var.
  242.     (begin_output): Allocate `name' more precisely.
  243.     Put child pid into pr_pid, so that we can wait for it later.
  244.     Don't check execl's return value, since any return must be an error.
  245.     (finish_output): Detect and report output errors.
  246.     Use waitpid if available.  Check pr exit status.
  247.     (line_cmp): Use locale's definition of white space
  248.     instead of using one hardwired defn for -b and another for -w.
  249.     (analyze_cmp): Avoid double negation with `! nontrivial'.
  250.     Pacify `gcc -Wall' be rewriting for-loop into do-while-loop.
  251.     (dir_file_pathname): New function.
  252.  
  253.     * version.c (version_string): Now char[], not char*.
  254.  
  255. Thu Jul 29 20:44:30 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
  256.  
  257.     * Makefile.in (config.status): Run config.status --recheck, not
  258.     configure, to get the right args passed.
  259.  
  260. Thu Jul 22 10:46:30 1993  Paul Eggert  (eggert@twinsun.com)
  261.  
  262.     * Makefile.in (dist): Replace `if [ ! TEST ]; then ACTION; fi'
  263.     with `[ TEST ] || ACTION || exit' so that the containing for-loop exits
  264.     with proper status for `make'.
  265.  
  266. Thu Jul  8 19:47:22 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
  267.  
  268.     * Makefile.in (installdirs): New target.
  269.     (install): Use it.
  270.     (Makefile, config.status, configure): New targets.
  271.  
  272. Sat Jun  5 23:10:40 1993  Paul Eggert  (eggert@twinsun.com)
  273.  
  274.     * Makefile.in (dist): Switch from .z to .gz.
  275.  
  276. Wed May 26 17:16:02 1993  Paul Eggert  (eggert@twinsun.com)
  277.  
  278.     * diff.c (main): Cast args to compare_files, for traditional C.
  279.     * side.c (print_sdiff_common_lines_print_sdiff_hunk): Likewise.
  280.     * analyze.c, diff3.c, sdiff.c, util.c: Don't assume NULL is defined
  281.     properly.
  282.  
  283. Tue May 25 14:54:05 1993  Paul Eggert  (eggert@twinsun.com)
  284.  
  285.     * analyze.c (diff_2_files):  With -q, do not report that files differ
  286.     if all their differences are ignored.
  287.     (briefly_report): New function.
  288.     * diff.h (ignore_some_changes): New variable.
  289.     * diff.c (compare_files): Don't use the file size shortcut if
  290.     ignore_some_changes is nonzero, since the file size may differ
  291.     merely due to ignored changes.
  292.     (main):  Set ignore_some_changes if we might ignore some changes.
  293.     Remove unsystematic assignment of 0 to static vars.
  294.     * io.c (read_files): New argument PRETEND_BINARY says whether to
  295.     pretend the files are binary.
  296.  
  297.     * diff3.c (tab_align_flag): New variable, for new -T option.
  298.     (main, usage, output_diff3): Add support for -T.
  299.  
  300. Sun May 23 15:25:29 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  301.  
  302.     * dir.c (dir_sort): Always init `data' to avoid GCC warning.
  303.  
  304. Sat May 22 15:35:02 1993  Paul Eggert  (eggert@twinsun.com)
  305.  
  306.     * Makefile.in (dist): Change name of package from diff to diffutils.
  307.     Don't bother to build .Z dist; .z suffices.
  308.  
  309. Fri May 21 16:35:22 1993  Paul Eggert  (eggert@twinsun.com)
  310.  
  311.     * diff.c: Include "system.h" to get memchr declaration.
  312.     * system.h (memchr): Declare if !HAVE_MEMCHR, not if
  313.     !HAVE_MEMCHR && !STDC_HEADERS.
  314.  
  315. Wed May 19 17:43:55 1993  Paul Eggert  (eggert@twinsun.com)
  316.  
  317.     * Version 2.3 released.
  318.  
  319. Fri Apr 23 17:18:44 1993  Paul Eggert  (eggert@twinsun.com)
  320.  
  321.     * io.c (find_identical_ends): Do not discard the last HORIZON_LINES
  322.     lines of the prefix, or the first HORIZON_LINES lines of the suffix.
  323.     * diff.c (main, longopts, usage): Add --horizon-lines option.
  324.     * diff3.c (main, process_diff, read_diff): Invoke second diff
  325.     with --horizon-lines determined by the first diff.
  326.     * diff.h, diff3.c (horizon_lines): New variable.
  327.  
  328. Mon Mar 22 16:16:00 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
  329.  
  330.     * system.h [HAVE_STRING_H || STDC_HEADERS] (bcopy, bcmp, bzero):
  331.     Don't define if already defined.
  332.  
  333. Fri Mar  5 00:20:16 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  334.  
  335.     * diff.c (main): Use NULL in arg to compare_files.
  336.  
  337. Thu Feb 25 15:26:01 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
  338.  
  339.     * system.h: Declare memchr #if !HAVE_MEMCHR && !STDC_HEADERS,
  340.     not #if !HAVE_MEMCHR || !STDC_HEADERS.
  341.  
  342. Mon Feb 22 15:04:46 1993  Richard Stallman  (rms@geech.gnu.ai.mit.edu)
  343.  
  344.     * io.c (find_identical_ends): Move complicated arg outside GUESS_LINES.
  345.  
  346. Mon Feb 22 12:56:12 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
  347.  
  348.     * Makefile.in (.c.o): Add -I$(srcdir); put $(CFLAGS) last before $<.
  349.  
  350. Sat Feb 20 19:18:56 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  351.  
  352.     * io.c (binary_file_p): Return zero if file size is zero.
  353.  
  354. Fri Feb 19 17:31:32 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
  355.  
  356.     * Version 2.2 released.
  357.  
  358.     * system.h [HAVE_STRING_H || STDC_HEADERS] (index, rindex): Don't
  359.     define if already defined.
  360.  
  361. Wed Feb 17 17:08:00 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
  362.  
  363.     * Makefile.in (srcs): Remove limits.h.
  364.  
  365. Thu Feb 11 03:36:00 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  366.  
  367.     * diff3.c (xmalloc): No longer static.
  368.  
  369.     * sdiff.c (edit): Allocate buf dynamically.
  370.  
  371.     * dir.c (dir_sort): Handle VOID_CLOSEDIR.
  372.  
  373. Wed Feb 10 00:15:54 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  374.  
  375.     * limits.h: File deleted (should never have been there). 
  376.  
  377. Tue Feb  9 03:53:22 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  378.  
  379.     * Makefile.in (.c.o, diff3.o, sdiff.o): Put $(CFLAGS) last.
  380.  
  381. Wed Feb  3 15:42:10 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
  382.  
  383.     * system.h: Don't #define const; let configure do it.
  384.  
  385. Mon Feb  1 02:13:23 1993  Paul Eggert  (eggert@hal.gnu.ai.mit.edu)
  386.  
  387.     * Version 2.1 released.
  388.  
  389.     * Makefile.in (dist): Survive ln failures.  Create .tar.z
  390.     (gzipped tar) file as well as .tar.Z (compressed tar) file.
  391.  
  392. Fri Jan  8 22:31:41 1993  Paul Eggert  (eggert@twinsun.com)
  393.  
  394.     * side.c (print_half_line): When the input position falls
  395.     outside the column, do not output a tab even if the output
  396.     position still falls within the column.
  397.  
  398. Mon Dec 21 13:54:36 1992  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
  399.  
  400.     * Makefile.in (.c.o): Add -I.
  401.  
  402. Fri Dec 18 14:08:20 1992  Paul Eggert  (eggert@twinsun.com)
  403.  
  404.     * configure.in: Add HAVE_FCNTL_H, since system.h uses it.
  405.  
  406. Tue Nov 24 10:06:48 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
  407.  
  408.     * Makefile.in: Note change from USG to HAVE_STRING_H.
  409.  
  410. Mon Nov 23 18:44:00 1992  Paul Eggert  (eggert@twinsun.com)
  411.  
  412.     * io.c (find_and_hash_each_line): When running out of lines,
  413.     double the number of allocated lines, instead of just doubling
  414.     that number minus the prefix lines.  This is more likely to
  415.     avoid the need for further memory allocation.
  416.  
  417. Wed Nov 18 20:40:28 1992  Paul Eggert  (eggert@twinsun.com)
  418.  
  419.     * dir.c (dir_sort): Plug memory leak: space holding directory
  420.     contents was not being reclaimed.  Get directory size from
  421.     struct file_data for initial guess at memory needed.
  422.     Detect errors when reading and closing directory.
  423.     (diff_dirs): Pass struct file_data to dir_sort.  Finish plugging leak.
  424.     * diff.c (compare_files): Pass struct file_data to diff_dirs.
  425.  
  426.     * io.c (find_and_hash_each_line): Don't assume alloc_lines is
  427.     nonzero when allocating more lines.
  428.  
  429. Thu Nov 12 16:02:18 1992  Paul Eggert  (eggert@twinsun.com)
  430.  
  431.     * diff.c (main): Add `-U lines' as an alias for `--unified=lines'.
  432.  
  433.     * diff3.c (usage): Add third --label option in example.
  434.  
  435.     * util.c (analyze_hunk): Fix test for ignoring blank lines.
  436.  
  437.     * configure.in, system.h: Avoid USG; use HAVE_TIME_H etc. instead.
  438.  
  439. Mon Nov  9 05:13:25 1992  Paul Eggert  (eggert@twinsun.com)
  440.  
  441.     * diff3.c (main, usage): Add -A or --show-all.
  442.     -m now defaults to -A, not -E.  Allow up to three -L options.
  443.     (output_diff3_edscript, output_diff3_merge):
  444.     Remove spurious differences between these two functions.
  445.     Output ||||||| for -A.  Distinguish between conflicts and overlaps.
  446.     (dotlines, undotlines): New functions that output `Ns', not `N,Ns'.
  447.     (output_diff3_edscript, output_diff3_merge): Use them.
  448.  
  449.     * io.c (find_identical_ends): shift_boundaries needs an extra
  450.     identical line at the end, not at the beginning.
  451.  
  452.     * sdiff.c (edit): execvp wants char **, not const char **.
  453.  
  454. Mon Oct 19 04:39:32 1992  Paul Eggert  (eggert@twinsun.com)
  455.  
  456.     * context.c (print_context_script, find_function): Context
  457.     line numbers start with - file->prefix_lines, not 0.
  458.  
  459.     * io.c (binary_file_p): Undo last change; it was a library bug.
  460.  
  461. Sun Oct 18 00:17:29 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  462.  
  463.     * io.c (binary_file_p): Consider empty file as non-binary.
  464.  
  465. Mon Oct  5 05:18:46 1992  Paul Eggert  (eggert@twinsun.com)
  466.  
  467.     * diff3.c (main, make_3way_diff, using_to_diff3_block): Don't
  468.     report bogus differences (for one of -mexEX3) just because the
  469.     file0-file1 diffs don't line up with the file0-file2 diffs.
  470.     (This is entirely possible since we don't use diff's -n
  471.     option.)  Always compare file1 to file2, so that diff3 sees
  472.     those changes directly.  Typically, file2 is now the common
  473.     file, not file0.
  474.     (output_diff3_merge): The input file is file 0, not the common file.
  475.  
  476.     (FC, FO): New macros; they replace FILE1, FILE0 for two-way diffs,
  477.     to distinguish them from three-way diffs.
  478.  
  479.     * diff3.c (using_to_diff3_block): Fold repeated code into loops.
  480.  
  481.     * diff3.c (make_3way_diff, process_diff): Have the *_end
  482.     variable point to the next field to be changed, not to the last
  483.     object allocated; this saves an if-then-else.
  484.  
  485.     * diff3.c (process_diff): Use D_NUMLINES instead of its definiens.
  486.  
  487.     * diff3.c: Make fns and vars static unless they must be external.
  488.  
  489. Wed Sep 30 09:21:59 1992  Paul Eggert  (eggert@twinsun.com)
  490.  
  491.     * analyze.c (diff_2_files): OUTPUT_IFDEF is now robust.
  492.     * diff.h (ROBUST_OUTPUT_STYLE): Likewise.
  493.     (default_line_format): Remove.  All refs removed.
  494.  
  495.     * ifdef.c (print_ifdef_lines): Add %L.  Optimize %l\n even if user
  496.     specified it, as opposed to its being the default.
  497.  
  498. Tue Sep 29 19:01:28 1992  Paul Eggert  (eggert@twinsun.com)
  499.  
  500.     * diff.c (longopts, main): --{old,new,unchanged,changed}--group-format
  501.     are new options, so that -D is no longer overloaded.  Set
  502.     no_diff_means_no_output if --unchanged-{line,group}-format allows it.
  503.     * diff.h (enum line_class): New type.
  504.     (group_format, line_format): Use it to regularize option flags.
  505.     All refs changed.
  506.  
  507.     * ifdef.c (format_ifdef, print_ifdef_lines): %n is no longer a format.
  508.  
  509. Mon Sep 28 04:51:42 1992  Paul Eggert  (eggert@twinsun.com)
  510.  
  511.     * diff.c (main, usage): Replace --line-prefix with the more general
  512.     --{old,new,unchanged}-line-format options.
  513.     * ifdef.c (format_ifdef, print_ifdef_lines): Likewise.
  514.     * diff.h (line_format): Renamed from line_prefix.  All refs changed.
  515.     * diff.h, ifdef.c (default_line_format): New variable.
  516.     * util.c (output_1_line): New function.
  517.     (print_1_line): Use it.
  518.  
  519.     * ifdef.c: (format_ifdef, print_ifdef_lines): Add %0 format.
  520.  
  521. Sun Sep 27 05:38:13 1992  Paul Eggert  (eggert@twinsun.com)
  522.  
  523.     * diff.c (main): Add -E or --line-prefix option.  Add -D'=xxx'
  524.     for common lines.  Change default -D< format from copy of -D>
  525.     format to to -D<%<; similarly for default -D> format.
  526.     * diff.h (common_format, line_prefix): New variables.
  527.     * ifdef.c (format_ifdef): New function.
  528.     (print_ifdef_script, print_ifdef_hunk, print_ifdef_lines):
  529.     Use it for -D'=xxx', -E.
  530.  
  531.     * context.c (find_hunk): Glue together two non-ignorable changes that
  532.     are exactly CONTEXT * 2 lines apart.  This shortens output, removes
  533.     a behavioral discontinuity at CONTEXT = 0, and is more compatible
  534.     with traditional diff.
  535.  
  536.     * io.c (find_identical_ends): Slurp stdin at most once.
  537.  
  538.     * util.c (print_line_line): line_flag is const char *.
  539.  
  540. Thu Sep 24 15:18:07 1992  Paul Eggert  (eggert@twinsun.com)
  541.  
  542.     * ifdef.c (print_ifdef_lines): New function, which fwrites a sequence
  543.     of lines all at once for speed.
  544.     (print_ifdef_script, print_ifdef_hunk): Use it.
  545.  
  546. Thu Sep 24 05:54:14 1992  Paul Eggert  (eggert@twinsun.com)
  547.  
  548.     * diff.c (main): Support new -D options for if-then-else formats.
  549.     (specify_format): New function.
  550.     * diff.h (ifndef_format, ifdef_format, ifnelse_format): New variables.
  551.     * ifdef.c (print_ifdef_hunk): Use the new variables instead of
  552.     a hardwired format.
  553.  
  554.     * side.c (print_1sdiff_line): Represent incomplete lines on output.
  555.     (print_sdiff_script): Likewise.  Don't print 'q' at end,
  556.     since that doesn't work with incomplete lines.
  557.     * sdiff.c (interact): Don't assume diff output ends with 'q' line.
  558.     * diff.h (ROBUST_OUTPUT_STYLE): OUTPUT_SDIFF is now robust.
  559.  
  560.     * sdiff.c (lf_copy, lf_snarf): Use memchr instead of index,
  561.     to avoid dumping core when files contain null characters.
  562.     (memchr): New function (if memchr is missing).
  563.  
  564.     * io.c (sip): New arg SKIP_TEST to skip test for binary file.
  565.     (read_files): Don't bother testing second file if first is binary.
  566.  
  567. Thu Sep 17 21:17:49 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
  568.  
  569.     * system.h [!USG && !_POSIX_VERSION]: Protect from conflicting
  570.     prototype for wait in sys/wait.h.
  571.  
  572. Wed Sep 16 12:32:18 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
  573.  
  574.     * Makefile.in: Include binprefix in -DDIFF_PROGRAM.
  575.  
  576. Tue Sep 15 14:27:25 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
  577.  
  578.     * Version 2.0.
  579.  
  580. Sat Sep 12 01:31:19 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
  581.  
  582.     * util.c, diff.h, system.h [!HAVE_MEMCHR]: Don't use void *
  583.     and const when declaring memchr replacement.  Declare memchr
  584.     if !STDC_HEADERS && !USG.
  585.  
  586. Thu Sep 10 15:17:32 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
  587.  
  588.     * Makefile.in (uninstall): New target.
  589.  
  590.     * diff.c (excluded_filename): Use fnmatch, not wildmat.
  591.     (usage): Document -x, -X, --exclude, --exclude-from.
  592.     Makefile.in: Use fnmatch.c, not wildmat.c.
  593.  
  594. Sun Sep  6 23:46:25 1992  Paul Eggert (eggert@twinsun.com)
  595.  
  596.     * configure.in: Add HAVE_MEMCHR.
  597.     * diff.h, util.c: Use it instead of MEMCHR_MISSING.
  598.  
  599. Sun Sep  6 07:25:49 1992  Paul Eggert (eggert@twinsun.com)
  600.  
  601.     * diff.h: (struct line_def): Replace this 3-word struct with char *.
  602.     This uses less memory, particularly for large files with short lines.
  603.     (struct file_data): New member linbuf_base counts number of lines
  604.     in common prefix that are not recorded in linbuf;
  605.     this uses less memory if files are identical or differ only at end.
  606.     New member buffered_lines counts possibly differing lines.
  607.     New member valid_lines counts valid data.
  608.     New member alloc_lines - linbuf_base replaces old linbufsize.
  609.     linbuf[0] now always points at first differing line.
  610.     Remove unused members ltran, suffix_lines.
  611.     Add const where appropriate.
  612.     (Is_space): New macro, for consistent definition of `white space'.
  613.     (excluded_filename, memchr, sip, slurp): New declarations.
  614.     * ed.c (print_ed_hunk): Adjust to diff.h's struct changes.
  615.     * context.c (pr_context_hunk): Likewise.
  616.     * ifdef.c (print_ifdef_script): Likewise.
  617.     * side.c (print_sdiff_script, print_half_line): Likewise.
  618.     * util.c (analyze_hunk, line_cmp, print_1_line): Likewise.
  619.  
  620.     * analyze.c (shift_boundaries): Remove unneeded variable `end' and
  621.     unnecessary comparisons of `preceding' and `other_preceding' against 0.
  622.     (diff_2_files): When comparing files byte-by-byte for equality,
  623.     don't slurp them all in at once; just compare them a buffer at a time.
  624.     This can win big if they differ early on.
  625.     Move some code to compare_files to enable this change.
  626.     Use only one buffer for stdin with `diff - -'.
  627.     (discard_confusing_lines, diff_2_files): Coalesce malloc/free calls.
  628.     (build_script): Remove obsolete OUTPUT_RCS code.
  629.  
  630.     * diff.c (add_exclude, add_exclude_file, excluded_filename): New fns.
  631.     (main): Use them for the new --exclude and --exclude-from options.
  632.     (compare_files): Don't open a file unless it must be read.
  633.     Treat `diff file file' and `diff file dir' similarly.
  634.     Move some code here from diff_2_files to enable this.
  635.     Simplify file vs dir warning.
  636.  
  637.     * dir.c (dir_sort): Support new --exclude* options.
  638.  
  639.     * io.c (struct equivclass): Put hash code and line length here instead
  640.     of struct line_def, so that they can be shared.
  641.     (find_and_hash_each_line): Compute equivalence class as we go,
  642.     instead of doing it in a separate pass; this thrashes memory less.
  643.     Make buckets realloc-able, since we can't preallocate them.
  644.     Record one more line start than there are lines, so that we can compute
  645.     any line's length by subtracting its start from the next line's,
  646.     instead of storing the length explicitly.  This saves memory.
  647.     Move prefix-handling code to find_identical_ends;
  648.     this wins with large prefixes.
  649.     Use Is_space, not is_space, for consistent treatment of white space.
  650.     (prepare_text_end): New function.
  651.     (find_identical_ends): Move slurping here, so it's only done when
  652.     needed.  Work even if the buffers are the same (because of `diff - -').
  653.     Compare prefixes a word at a time for speed.
  654.     (find_equiv_class): Delete; now done by find_and_hash_each_line.
  655.     (read_files): Don't slurp unless needed.
  656.     find_equiv_class's work is now folded into find_and_hash_each_line.
  657.     Don't copy stdin buffer if `diff - -'.
  658.     Check for running out of primes.
  659.     (sip, slurp): Split first part of `slurp' into another function `sip'.
  660.     `sip' sets things up and perhaps reads the first ST_BLKSIZE buffer to
  661.     see whether the file is binary; `slurp' now just finishes the job.
  662.     This lets diff_2_files compare binary files lazily.
  663.     Allocate a one-word sentinel to allow word-at-a-time prefix comparison.
  664.     Count prefix lines only if needed, only count the first file's prefix.
  665.     Don't bother to count suffix lines; it's never needed.
  666.     Set up linbuf[0] to point at first differing line.
  667.     (binary_file_p): Change test for binary files:
  668.     if it has a null byte in its first buffer, it's binary.
  669.     (primes): Add more primes.
  670.  
  671.     * util.c (line_cmp): Use bcmp for speed.
  672.     Use Is_space, not is_space, for consistent treatment of white space.
  673.     (translate_line_number): Internal line numbers now count from 0
  674.     starting after the prefix.
  675.     (memchr): New function (if memchr is missing).
  676.  
  677.     * Makefile.in: Document HAVE_ST_BLKSIZE.  Link with wildmat.o.
  678.     * system.h (STAT_BLOCKSIZE): New macro based on HAVE_ST_BLKSIZE.
  679.     * configure.in: Add AC_ST_BLKSIZE.
  680.     * wildmat.c: New file.
  681.  
  682. Fri Sep  4 01:28:51 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  683.  
  684.     * sdiff.c (xmalloc): Renamed from ck_malloc.  Callers changed.
  685.  
  686. Thu Sep  3 15:28:59 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
  687.  
  688.     * diff.h: Don't declare free, index, rindex.
  689.  
  690. Tue Aug 11 22:18:06 1992  John Gilmore  (gnu at cygnus.com)
  691.  
  692.     * io.c (binary_file_p):  Use heuristic to avoid declaring info
  693.     files as binary files.  Allow about 1.5% non-printing
  694.     characters (in info's case, ^_).
  695.  
  696. Tue Jul  7 01:09:26 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
  697.  
  698.     * diff.h: Replace function_regexp and ignore_regexp with lists
  699.     of compiled regexps.
  700.     * analyze.c, context.c, util.c: Test whether the lists, not
  701.     the old variables, are empty.
  702.     * util.c (analyze_hunk), context.c (find_function): Compare
  703.     lines with the lists of regexps.
  704.     * diff.c (add_regexp): New function.
  705.     (main): Use it.
  706.  
  707.     * diff3: Add -v --version option.
  708.     * Makefile.in: Link with version.o.
  709.  
  710.     * system.h: New file.
  711.     * diff.h, cmp.c, diff3.c, sdiff.c: Use it.
  712.  
  713.     * diff.h, diff3.c: Include string.h or strings.h, as appropriate.
  714.     Declare malloc and realloc.
  715.  
  716.     * diff3.c (perror_with_exit): Include program name in message.
  717.  
  718.     * diff3.c: Lowercase error messages for GNU standards.
  719.  
  720.     * sdiff.c [USG || STDC_HEADERS]: Define bcopy in terms of memcpy.
  721.  
  722.     * sdiff.c: Use the version number from version.c.
  723.     * Makefile.in: Link with version.o.
  724.  
  725.     * cmp.c error.c xmalloc.c: New files from textutils.
  726.     * Makefile.in: Add rules for them.
  727.  
  728.     * diff.c (longopts): --unidirectional-new-file is like -P, not -N.
  729.     Rename --file-label to --label (leave old name, but undocumented).
  730.  
  731.     * sdiff.c, diff.c (usage): Condense messages and fix some errors.
  732.  
  733.     * diff3.c (main, usage): Add long-named options.
  734.  
  735. Fri Jul  3 14:31:18 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
  736.  
  737.     * diff.h, diff3.c, sdiff.c: Change FOO_MISSING macros to HAVE_FOO.
  738.  
  739. Thu Jun 25 16:59:47 1992  David J. MacKenzie  (djm@apple-gunkies.gnu.ai.mit.edu)
  740.  
  741.     * diff.c: --reversed-ed -> --forward-ed.
  742.  
  743. Wed Feb 26 12:17:32 1992  Paul Eggert  (eggert@yata.uucp)
  744.  
  745.     * analyze.c, diff.c, diff.h, io.c: For -y, compare even if same file.
  746.  
  747. Fri Feb 14 22:46:38 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  748.  
  749.     * io.c, diff3.c, analyze.c: Add extra parentheses.
  750.  
  751. Sun Feb  9 00:22:42 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  752.  
  753.     * diff.h (unidirectional_new_file_flag): New variable.
  754.     * diff.c (main): Set that for -P.
  755.     (compare_files): Support -P, somewhat like -N.
  756.     (longopts): Support long name for -P.
  757.  
  758. Sat Jan  4 20:10:34 1992  Paul Eggert (eggert at yata.uucp)
  759.  
  760.     * Makefile.in: Distribute diff.info-* too.
  761.  
  762.     * README, sdiff.c: version number now matches version.c.
  763.  
  764.     * configure: Fix and document vfork test.
  765.  
  766.     * ifdef.c: Don't dump core if `diff -Dx f f'.
  767.  
  768. Mon Dec 23 23:36:08 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
  769.  
  770.     * diff.h, diff3.c, sdiff.c: Change POSIX ifdefs to
  771.     HAVE_UNISTD_H and _POSIX_VERSION.
  772.  
  773. Wed Dec 18 17:00:31 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
  774.  
  775.     * Makefile.in (srcs): Add sdiff.c.
  776.     (tapefiles): Add diff.texi and diff.info.
  777.  
  778.     * diff.h, diff3.c, sdiff.c: Use HAVE_VFORK_H instead of
  779.     VFORK_HEADER and VFORK_WORKS.
  780.  
  781. Tue Dec 17 00:02:59 1991  Paul Eggert  (eggert at yata.uucp)
  782.  
  783.     * Makefile.in (all): Add diff.info, sdiff.
  784.  
  785.     * configure, diff.c, sdiff.c:
  786.     Prefix long options with `--', not `+'.
  787.     * diff.c: Regularize option names.
  788.  
  789.     * configure: Fix check for vfork.
  790.     * configure, diff.c, diff.h, diff3.c, sdiff.c:
  791.     Use Posix definitions when possible.
  792.  
  793.     * context.c: Align context with tab if -T is given.  Tune.
  794.     * diff.c, diff.h, side.c: Calculate column widths so that tabs line up.
  795.     * io.c: Add distinction between white space and printing chars.
  796.     * side.c: Don't expand tabs unless -t is given.
  797.     * side.c, util.c: Tab expansion now knows about '\b', '\f', '\r', '\v'.
  798.     * util.c: -w skips all white space.  Remove lint.  Tune.
  799.  
  800.     * sdiff.c: Support many more diff options, e.g. `-', `sdiff file dir'.
  801.     Ignore interrupts while the subsidiary editor is in control.
  802.     Clean up temporary file and kill subsidiary diff if interrupted.
  803.     Ensure subsidiary diff doesn't ignore SIGPIPE.
  804.     Don't get confused while waiting for two subprocesses.
  805.     Don't let buffers overflow.  Check for I/O errors.
  806.     Convert to GNU style.  Tune.
  807.  
  808.     * sdiff.c, util.c: Don't lose errno.
  809.     Don't confuse sdiff with messages like `Binary files differ'.
  810.     * sdiff.c, side.c: Don't assume that common lines are identical.
  811.     Simplify --sdiff-merge-assist format.
  812.  
  813. Mon Sep 16 16:42:01 1991  Tom Lord  (lord at churchy.gnu.ai.mit.edu)
  814.  
  815.     * Makefile.in, sdiff.c: introduced sdiff front end to diff.
  816.  
  817.     * Makefile.in, analyze.c, diff.c, diff.h, io.c, side.c: Added
  818.     sdiff-style output format to diff.
  819.  
  820. Mon Aug 26 16:44:55 1991  David J. MacKenzie  (djm at pogo.gnu.ai.mit.edu)
  821.  
  822.     * Makefile.in, configure: Only put $< in Makefile if using VPATH,
  823.     because older makes don't understand it.
  824.  
  825. Fri Aug  2 12:22:30 1991  David J. MacKenzie  (djm at apple-gunkies)
  826.  
  827.     * configure: Create config.status.  Remove it and Makefile if
  828.     interrupted while creating them.
  829.  
  830. Thu Aug  1 22:24:31 1991  David J. MacKenzie  (djm at apple-gunkies)
  831.  
  832.     * configure: Check for +srcdir etc. arg and look for
  833.     Makefile.in in that directory.  Set VPATH if srcdir is not `.'.
  834.     * Makefile.in: Get rid of $(archpfx).
  835.  
  836. Tue Jul 30 21:28:44 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  837.  
  838.     * Makefile.in (prefix): Renamed from DESTDIR.
  839.  
  840. Wed Jul 24 23:08:56 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
  841.  
  842.     * diff.h, diff3.c: Rearrange ifdefs to use POSIX,
  843.     STDC_HEADERS, VFORK_MISSING, DIRENT.  This way it works on
  844.     more systems that aren't pure USG or BSD.
  845.     Don't not define const if __GNUC__ is defined -- that would
  846.     break with -traditional. 
  847.     * configure: Check for those features.
  848.  
  849. Wed Jul 10 01:39:23 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
  850.  
  851.     * configure, Makefile.in: $(INSTALLPROG) -> $(INSTALL).
  852.  
  853. Sat Jul  6 16:39:04 1991  David J. MacKenzie  (djm at geech.gnu.ai.mit.edu)
  854.  
  855.     * Replace Makefile with configure and Makefile.in.
  856.     Update README with current compilation instructions.
  857.  
  858. Sat Jul  6 14:03:29 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  859.  
  860.     * util.c (setup_output): Just save the args for later use.
  861.     (begin_output): Do the real work, with the values that were saved.
  862.     It's safe to call begin_output more than once.
  863.     Print the special headers for context format here.
  864.     * analyze.c (diff_2_files): Don't print special headers here.
  865.     * context.c (pr_context_hunk, pr_unidiff_hunk): Call begin_output.
  866.     * ed.c (print_ed_hunk, print_forward_ed_hunk, print_rcs_hunk):
  867.     * normal.c (print_normal_hunk): Likewise.
  868.     * ifdef.c (print_ifdef_hunk): Likewise.
  869.     * util.c (finish_output): Don't die if begin_output was not called.
  870.  
  871. Thu Jun 20 23:10:01 1991  David J. MacKenzie  (djm at geech.gnu.ai.mit.edu)
  872.  
  873.     * Makefile: Add TAGS, distclean, and realclean targets.
  874.     Set SHELL.
  875.  
  876. Tue Apr 30 13:54:36 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  877.  
  878.     * diff.h (TRUE, FALSE): Undefine these before defining.
  879.  
  880. Thu Mar 14 18:27:27 1991  Richard Stallman  (rms@mole.ai.mit.edu)
  881.  
  882.     * Makefile (objs): Include $(ALLOCA).
  883.  
  884. Sat Mar  9 22:34:03 1991  Richard Stallman  (rms at mole.ai.mit.edu)
  885.  
  886.     * diff.h: Include regex.h.
  887.  
  888. Thu Feb 28 18:59:53 1991  Richard Stallman  (rms at mole.ai.mit.edu)
  889.  
  890.     * Makefile (diff3): Link with GNU getopt.
  891.  
  892. Sat Feb 23 12:49:43 1991  Richard Stallman  (rms at mole.ai.mit.edu)
  893.  
  894.     * io.c (find_equiv_class): Make hash code unsigned before mod.
  895.  
  896.     * diff.h (files): Add EXTERN.
  897.  
  898. Sun Jan 13 21:33:01 1991  Richard Stallman  (rms at mole.ai.mit.edu)
  899.  
  900.     * diff.c: +print option renamed +paginate.  Remove +all-text.
  901.  
  902. Mon Jan  7 06:18:01 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
  903.  
  904.     * Makefile (dist): New target, replacing diff.tar and
  905.     diff.tar.Z, to encode version number in distribution directory
  906.     and tar file names.
  907.  
  908. Sun Jan  6 18:42:23 1991  Michael I Bushnell  (mib at geech.ai.mit.edu)
  909.  
  910.     * Version 1.15 released.
  911.  
  912.     * version.c: Updated from 1.15 alpha to 1.15
  913.  
  914.     * context.c (print_context_number_range,
  915.     print_unidiff_number_range): Don't print N,M when N=M, print
  916.     just N instead.
  917.     
  918.     * README: Updated for version 1.15.
  919.     Makefile: Updated for version 1.15.
  920.  
  921.     * diff3.c (main): Don't get confused if one of the arguments
  922.     is a directory.
  923.  
  924.     * diff.c (compare_files): Don't get confused if comparing
  925.     standard input to a directory; print error instead.
  926.  
  927.     * analyze.c (diff_2_files), context.c (print_context_header,
  928.     print_context_script), diff.c (main), diff.h (enum
  929.     output_style): Tread unidiff as an output style in its own
  930.     right.  This also generates an error when both -u and -c are
  931.     given.
  932.  
  933.     * diff.c (main): Better error messages when regexps are bad.
  934.  
  935.     * diff.c (compare_files): Don't assume stdin is opened.
  936.  
  937.     * diff3.c (read_diff): Don't assume things about the order of
  938.     descriptor assignment and closes.
  939.  
  940.     * util.c (setup_output): Don't assume things about the order
  941.     of descriptor assignment and closes. 
  942.  
  943.     * diff.c (compare_files): Set a flag so that closes don't
  944.     happen more than once.
  945.  
  946.     * diff.c (main): Don't just flush stdout, do a close.  That
  947.     way on broken systems we can still get errors. 
  948.  
  949. Mon Dec 24 16:24:17 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  950.  
  951.     * diff.c (usage): Use = for args of long options.
  952.  
  953. Mon Dec 17 18:19:20 1990  Michael I Bushnell  (mib at geech.ai.mit.edu)
  954.  
  955.     * context.c (print_context_label): Labels were interchanged badly.
  956.  
  957.     * context.c (pr_unidiff_hunk): Changes to deal with files
  958.     ending in incomplete lines.
  959.     * util.c (print_1_line): Other half of the changes.
  960.  
  961. Mon Dec  3 14:23:55 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  962.  
  963.     * diff.c (longopts, usage): unidiff => unified.
  964.  
  965. Wed Nov  7 17:13:08 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  966.  
  967.     * analyze.c (diff_2_files): No warnings about newlines for -D.
  968.  
  969.     * diff.c (pr_unidiff_hunk): Remove ref to output_patch_flag.
  970.  
  971. Tue Oct 23 23:19:18 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  972.  
  973.     * diff.c (compare_files): For -D, compare even args are same file.
  974.     * analyze.c (diff_2_files): Likewise.
  975.     Also, output even if files have no differences.
  976.  
  977.     * analyze.c (diff_2_files): Print missing newline messages last.
  978.     Return 2 if a newline is missing.
  979.     Print them even if files end with identical text.
  980.  
  981. Mon Oct 22 19:40:09 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  982.  
  983.     * diff.c (usage): Return 2.
  984.  
  985. Wed Oct 10 20:54:04 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  986.  
  987.     * diff.c (longopts): Add +new-files.
  988.  
  989. Sun Sep 23 22:49:29 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  990.  
  991.     * context.c (print_context_script): Handle unidiff_flag.
  992.     (print_context_header): Likewise.
  993.     (print_unidiff_number_range, pr_unidiff_hunk): New functions.
  994.     * diff.c (longopts): Add element for +unidiff.
  995.     (main): Handle +unidiff and -u.
  996.     (usage): Mention them.
  997.  
  998. Wed Sep  5 16:33:22 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  999.  
  1000.     * io.c (find_and_hash_each_line): Deal with missing final newline
  1001.     after buffering necessary context lines.
  1002.  
  1003. Sat Sep  1 16:32:32 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  1004.  
  1005.     * io.c (find_identical_ends): ROBUST_OUTPUT_FORMAT test was backward.
  1006.  
  1007. Thu Aug 23 17:17:20 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  1008.  
  1009.     * diff3.c (WIFEXITED): Undef it if WEXITSTATUS is not defined.
  1010.     * context.c (find_function): Don't try to return values.
  1011.  
  1012. Wed Aug 22 11:54:39 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  1013.  
  1014.     * diff.h (O_RDONLY): Define if not defined.
  1015.  
  1016. Tue Aug 21 13:49:26 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  1017.  
  1018.     * Handle -L option.
  1019.     * context.c (print_context_label): New function.
  1020.     (print_context_header): Use that.
  1021.     * diff.c (main): Recognize the option.
  1022.     (usage): Updated.
  1023.     * diff.h (file_label): New variable.
  1024.     * diff3.c (main): Recognize -L instead of -t.
  1025.  
  1026.     * diff3.c (main): Support -m without other option.
  1027.  
  1028.     * diff3.c (WEXITSTATUS, WIFEXITED): Define whenever not defined.
  1029.  
  1030.     * diff3.c (bcopy, index, rindex): Delete definitions; not used.
  1031.     (D_LINENUM, D_LINELEN): Likewise.
  1032.     (struct diff_block): lengths includes newlines.
  1033.     (struct diff3_block): Likewise.
  1034.     (always_text, merge): New variables.
  1035.     (read_diff): Return address of end, not size read.  Calls changed.
  1036.     Pass -a to diff if given to diff3.
  1037.     current_chunk_size now an int.  Detect error in `pipe'.
  1038.     Check for incomplete line of output here.
  1039.     (scan_diff_line): Don't make scan_ptr + 2 before knowing it is valid.
  1040.     No need to check validity of diff output here.
  1041.     Include newline in length of line.
  1042.     (main): Compute rev_mapping here.  Handle -a and -m.
  1043.     Error message if excess -t operands.  Error for incompatible options.
  1044.     Error if `-' given more than once.
  1045.     Fix error storing in tag_strings.
  1046.     (output_diff3): REV_MAPPING is now an arg.  Call changed.
  1047.     Change syntax of "missing newline" message.
  1048.     Expect length of line to include newline.
  1049.     (output_diff3_edscript): Return just 0 or 1.
  1050.     REV_MAPPING is now an arg.  Call changed.
  1051.     (output_diff3_merge): New function.
  1052.     (process_diff): Better error message for bad diff format.
  1053.     (fatal, perror_with_exit): Return status 2.
  1054.  
  1055.     * analyze.c (diff_2_files): Report missing newline in either
  1056.     or both files, if not robust output style.
  1057.  
  1058.     * util.c (setup_output): Detect error from pipe.
  1059.     No need to close stdin.
  1060.  
  1061.     * util.c (print_1_line): Change format of missing-newline msg.
  1062.     Change if statements to switch.
  1063.  
  1064.     * io.c (slurp): Don't mention differences in final newline if -B.
  1065.  
  1066.     * io.c (binary_file_p): Use ISO char set as criterion, not ASCII.
  1067.  
  1068.     * io.c (find_identical_ends): Increase value of BEG0 by 1.
  1069.     Other changes in backwards scan to avoid decrementing pointers
  1070.     before start of array, and set LINES properly.
  1071.  
  1072.     * diff.h (ROBUST_OUTPUT_STYLE): New macro.
  1073.     * io.c (find_identical_ends, find_and_hash_each_line): Use that macro.
  1074.  
  1075.     * diff.h (dup2): Don't define if XENIX.
  1076.  
  1077.     * diff.c (main): Check for write error at end.
  1078.  
  1079.     * context.c (find_function): Don't return a value.
  1080.     Use argument FILE rather than global files.
  1081.  
  1082.     * analyze.c: Add external function declarations.
  1083.     * analyze.c (build_script): Turn off explicit check for final newline.
  1084.  
  1085.     * analyze.c (discard_confusing_lines): Make integers unsigned.
  1086.  
  1087. Tue Jul 31 21:37:16 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1088.  
  1089.     * io.c (find_and_hash_each_line): Correct the criterion 
  1090.     for leaving out the newline from the end of the line.
  1091.  
  1092. Tue May 29 21:28:16 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1093.  
  1094.     * dir.c (diff_dirs): Free things only if nonzero.
  1095.  
  1096. Mon Apr 16 18:31:05 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1097.  
  1098.     * diff.h (NDIR_IN_SYS): New macro controls location of ndir.h.
  1099.  
  1100.     * diff3.c (xmalloc, xrealloc): Don't die if size == 0 returns 0.
  1101.  
  1102. Sun Mar 25 15:58:42 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1103.  
  1104.     * analyze.c (discard_confusing_lines):
  1105.     `many' wasn't being used; use it.
  1106.     Cancelling provisionals near start of run must handle already
  1107.     cancelled provisionals.
  1108.     Cancelling subruns of provisionals was cancelling last nonprovisional.
  1109.  
  1110. Sat Mar 24 14:02:51 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1111.  
  1112.     * analyze.c (discard_confusing_lines):
  1113.     Threshold for line occurring many times scales by square root
  1114.     of total lines.
  1115.     Within each run, cancel any long subrun of provisionals.
  1116.     Don't update `provisional' while cancelling provisionals.
  1117.     In big outer loop, handle provisional and nonprovisional separately.
  1118.  
  1119. Thu Mar 22 16:35:33 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1120.  
  1121.     * analyze.c (discard_confusing_lines):
  1122.     The first loops to discard provisionals from ends failed to step.
  1123.     In second such loops, keep discarding all consecutive provisionals.
  1124.     Increase threshold for stopping discarding, and also check for
  1125.     consecutive nondiscardables as separate threshold.
  1126.  
  1127. Fri Mar 16 00:33:08 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1128.  
  1129.     * diff3.c (read_diff): Pass -- as first arg to diff.
  1130.  
  1131.     * diff3.c: Include wait.h or define equivalent macros.
  1132.     (read_diff): Don't use stdio printing error in the inferior.
  1133.     Remember the pid and wait for it.  Report failing status.
  1134.     Report failure of vfork.
  1135.  
  1136. Sun Mar 11 17:10:32 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1137.  
  1138.     * diff3.c (main): Accept -t options and pass to output_diff3_edscript.
  1139.     (usage): Mention -t.
  1140.     (read_diff): Use vfork.
  1141.     (vfork): Don't use it on Sparc.
  1142.  
  1143.     * diff.h (vfork): Don't use it on Sparc.
  1144.  
  1145. Tue Mar  6 22:37:20 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1146.  
  1147.     * diff3.c (dup2): Don't define on Xenix.
  1148.  
  1149.     * Makefile: Comments for Xenix.
  1150.  
  1151. Thu Mar  1 17:19:23 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1152.  
  1153.     * analyze.c (diff_2_files): `message' requires three args.
  1154.  
  1155. Fri Feb 23 10:56:50 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
  1156.  
  1157.     * diff.h, util.c, diff3.c: Change 'void *' to 'VOID *', with
  1158.     VOID defined as void if __STDC__, char if not.
  1159.  
  1160. Sun Feb 18 20:31:58 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
  1161.  
  1162.     * Makefile: Add rules for getopt.c, getopt1.c, getopt.h.
  1163.  
  1164.     * getopt.c, getopt.h, getopt1.c: New files.
  1165.  
  1166.     * main.c (main, usage): Add long options.
  1167.  
  1168.     * analyze.c (shift_boundaries): Remove unused var 'j_end'.
  1169.  
  1170. Thu Feb  8 02:43:16 1990  Jim Kingdon  (kingdon at pogo.ai.mit.edu)
  1171.  
  1172.     * GNUmakefile: include ../Makerules before Makefile.
  1173.  
  1174. Fri Feb  2 23:21:38 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1175.  
  1176.     * analyze.c (diif_2_files): If -B or -I, don't return 1
  1177.     if all changes were ignored.
  1178.  
  1179. Wed Jan 24 20:43:57 1990  Richard Stallman  (rms at albert.ai.mit.edu)
  1180.  
  1181.     * diff3.c (fatal): Output to stderr.
  1182.  
  1183. Thu Jan 11 00:25:56 1990  David J. MacKenzie  (djm at hobbes.ai.mit.edu)
  1184.  
  1185.     * diff.c (usage): Mention -v.
  1186.  
  1187. Wed Jan 10 16:06:38 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1188.  
  1189.     * diff3.c (output_diff3_edscript): Return number of overlaps.
  1190.     (main): If have overlaps, exit with status 1.
  1191.  
  1192. Sun Dec 24 10:29:20 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1193.  
  1194.     * io.c (find_equiv_class): Fix typo that came from changing init of B
  1195.     to an assigment.
  1196.  
  1197.     * version.c: New file.
  1198.     * diff.c (main): -v prints version number.
  1199.  
  1200.     * io.c (binary_file_p): Null char implies binary file.
  1201.  
  1202. Fri Nov 17 23:44:55 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1203.  
  1204.     * util.c (print_1_line): Fix off by 1 error.
  1205.  
  1206. Thu Nov 16 13:51:10 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1207.  
  1208.     * util.c (xcalloc): Function deleted.
  1209.  
  1210.     * io.c (slurp): Null-terminate the buffer.
  1211.  
  1212.     * io.c (read_files): Delete unused vars.
  1213.  
  1214.     * io.c (find_equiv_class): Don't index by N if too low.
  1215.  
  1216.     * dir.c (dir_sort): Delete the extra declaration of compare_names.
  1217.  
  1218.     * diff.h: Don't declare xcalloc.  Declare some other functions.
  1219.  
  1220.     * analyze.c (shift_boundaries):
  1221.     Test for END at end of range before indexing by it.
  1222.     Fix typo `preceeding' in var names.
  1223.  
  1224. Sat Nov 11 14:04:16 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1225.  
  1226.     * diff3.c (using_to_diff3_block): Delete unused vars.
  1227.     (make_3way_diff, process_diff_control, read_diff, output_diff3): Likewise.
  1228.  
  1229. Mon Nov  6 18:15:50 EST 1989 Jay Fenlason (hack@ai.mit.edu)
  1230.  
  1231.     * README Fix typo.
  1232.  
  1233. Fri Nov  3 15:27:47 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1234.  
  1235.     * diff.c (usage): Mention -D. 
  1236.  
  1237.     * ifdef.c (print_ifdef_hunk): Write comments on #else and #endif.
  1238.  
  1239. Sun Oct 29 16:41:07 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1240.  
  1241.     * diff.c (compare_files): Don't fflush for identical files.
  1242.  
  1243. Wed Oct 25 17:57:12 1989  Randy Smith  (randy at apple-gunkies.ai.mit.edu)
  1244.  
  1245.     * diff3.c (using_to_diff3_block): When defaulting lines from
  1246.     FILE0, only copy up to just under the *lowest* line mentioned
  1247.     in the next diff.
  1248.  
  1249.     * diff3.c (fatal): Add \n to error messages.
  1250.  
  1251. Wed Oct 25 15:05:49 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1252.  
  1253.     * Makefile (tapefiles): Add ChangeLog.
  1254.  
  1255. Tue Oct  3 00:51:17 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1256.  
  1257.     * diff3.c (process_diff, create_diff3_block): Init ->next field.
  1258.  
  1259. Fri Sep 29 08:16:45 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1260.  
  1261.     * util.c (line_cmp): Alter end char of line 2, not line 1.
  1262.  
  1263. Wed Sep 20 00:12:37 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1264.  
  1265.     * Makefile (diff.tar): Expect ln to fail on some files;
  1266.     copy them with cp.
  1267.  
  1268. Mon Sep 18 02:54:29 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1269.  
  1270.     * Handle -D option:
  1271.     * io.c (find_and_hash_each_line): Keep all lines of 1st file.
  1272.     * diff.c (main): Handle -D option.
  1273.     (compare_files): Reject -D if files spec'd are directories.
  1274.     * analyze.c (diff_2_files): Handle OUTPUT_IFDEF case.
  1275.  
  1276. Fri Sep  1 20:15:50 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1277.  
  1278.     * diff.c (option_list): Rename arg VECTOR as OPTIONVEC.
  1279.  
  1280. Mon Aug 28 17:58:27 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1281.  
  1282.     * diff.c (compare_files): Clear entire inf[i].stat.
  1283.  
  1284. Wed Aug 23 17:48:47 1989  Richard Stallman  (rms at apple-gunkies.ai.mit.edu)
  1285.  
  1286.     * io.c (find_identical_ends): Sign was backward
  1287.     determining where to bound the scan for the suffix.
  1288.  
  1289. Wed Aug 16 12:49:16 1989  Richard Stallman  (rms at hobbes.ai.mit.edu)
  1290.  
  1291.     * analyze.c (diff_2_files): If -q, treat all files as binary.
  1292.     * diff.c (main): Detect -q, record in no_details_flag.
  1293.  
  1294. Sun Jul 30 23:12:00 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1295.  
  1296.     * diff.c (usage): New function.
  1297.     (main): Call it.
  1298.  
  1299. Wed Jul 26 02:02:19 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1300.  
  1301.     * diff.c (main): Make -C imply -c.
  1302.  
  1303. Thu Jul 20 17:57:51 1989  Chris Hanson  (cph at kleph)
  1304.  
  1305.     * io.c (find_and_hash_each_line): Bug fix in context handling,
  1306.     introduced by last change.
  1307.  
  1308. Fri Jul 14 17:39:20 1989  Chris Hanson  (cph at kleph)
  1309.  
  1310.     * analyze.c: To make RCS work correctly on files that don't
  1311.     necessarily end in newline, introduce some changes that cause
  1312.     diffs to be sensitive to missing final newline.  Because
  1313.     non-RCS modes don't want to be affected by these changes, they
  1314.     are conditional on `output_style == OUTPUT_RCS'.
  1315.     (diff_2_files) [OUTPUT_RCS]: Suppress the "File X missing
  1316.     newline" message.
  1317.     (build_script) [OUTPUT_RCS]: Cause the last line to compare as
  1318.     different if exactly one of the files is missing its final
  1319.     newline.
  1320.  
  1321.     * io.c (find_and_hash_each_line): Bug fix in
  1322.     ignore_space_change mode.  Change line's length to include the
  1323.     newline.  For OUTPUT_RCS, decrement last line's length if
  1324.     there is no final newline.
  1325.     (find_identical_ends) [OUTPUT_RCS]: If one of the files is
  1326.     missing a final newline, make sure it's not included in either
  1327.     the prefix or suffix.
  1328.  
  1329.     * util.c (print_1_line): Change line output routine to account
  1330.     for line length including the newline.
  1331.  
  1332. Tue Jun 27 02:35:28 1989  Roland McGrath  (roland at hobbes.ai.mit.edu)
  1333.  
  1334.     * Makefile: Inserted $(archpfx) where appropriate.
  1335.  
  1336. Wed May 17 20:18:43 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1337.  
  1338.     * diff3.c [USG]: Include fcntl.h.
  1339.  
  1340.     * diff.h [USG]: New compilation flags HAVE_NDIR, HAVE_DIRECT.
  1341.  
  1342. Wed Apr 26 15:35:57 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1343.  
  1344.     * dir.c (diff_dirs): Two new args, NONEX1 and NONEX2, say to pretend
  1345.     nonex dirs are empty.
  1346.     (dir_sort): New arg NONEX, likewise.
  1347.     * diff.c (compare_files): Pass those args.
  1348.     Sometimes call diff_dirs if subdir exists in just one place.
  1349.  
  1350. Wed Apr 12 01:10:27 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1351.  
  1352.     * io.c (find_identical_ends): Set END0 *after* last char
  1353.     during backward scan for suffix.
  1354.  
  1355. Sat Apr  8 15:49:49 1989  Randall Smith  (randy at apple-gunkies.ai.mit.edu)
  1356.  
  1357.     * diff3.c (using_to_diff3_block): Now find high marks in files 1
  1358.     and 2 through mapping off of the last difference instead of the
  1359.     first.
  1360.  
  1361.     * diff3.c: Many trivial changes to spelling inside comments. 
  1362.  
  1363. Fri Feb 24 12:38:03 1989  Randall Smith  (randy at gluteus.ai.mit.edu)
  1364.  
  1365.     * util.c, normal.c, io.c, ed.c, dir.c, diff.h, diff.c, context.c,
  1366.     analyze.c, Makefile: Changed copyright header to conform with new
  1367.     GNU General Public license.
  1368.     * diff3.c: Changed copyright header to conform with new GNU
  1369.     General Public license.
  1370.     * COPYING: Made a hard link to /gp/rms/COPYING.
  1371.  
  1372. Fri Feb 24 10:01:58 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1373.  
  1374.     * io.c (slurp): Leave 2 chars space at end of buffer, not one.
  1375.     (find_identical_ends): Special case if either file is empty;
  1376.     don't try to make a sentinel since could crash.
  1377.  
  1378. Wed Feb 15 14:24:48 1989  Jay Fenlason  (hack at apple-gunkies.ai.mit.edu)
  1379.  
  1380.     * diff3.c (message)  Re-wrote routine to avoid using alloca()
  1381.  
  1382. Wed Feb 15 06:19:14 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1383.  
  1384.     * io.c (find_identical_ends): Delete the variable `bytes'.
  1385.  
  1386. Sun Feb 12 11:50:36 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1387.  
  1388.     * io.c (slurp): ->bufsize is nominal amount we have room for;
  1389.     add room for sentinel when calling xmalloc or xrealloc.
  1390.  
  1391.     * io.c (find_identical_ends): Do need overrun check in finding suffix.
  1392.  
  1393. Fri Feb 10 01:28:15 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1394.  
  1395.     * diff.c (main): -C now takes arg to specify context length.
  1396.     Now -p to show C function name--Damned IEEE!
  1397.     Fatal error if context length spec'd twice.
  1398.  
  1399.     * ed.c (print_ed_hunk): Now special treatment only for lines containing
  1400.     precisely a dot and nothing else.  Output `..', end the insert,
  1401.     substitute that one line, then resume the insert if nec.
  1402.  
  1403.     * io.c (find_and_hash_lines): When backing up over starting context,
  1404.     don't move past buffer-beg.
  1405.  
  1406.     * io.c (find_identical_ends): Use sentinels to make the loops faster.
  1407.     If files are identical, skip the 2nd loop and return quickly.
  1408.     (slurp): Leave 1 char extra space after each buffer.
  1409.  
  1410.     * analyze.c (diff_2_files): Mention difference in final newlines.
  1411.  
  1412. Wed Jan 25 22:44:44 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1413.  
  1414.     * dir.c (diff_dirs): Use * when calling fcn ptr variable.
  1415.  
  1416. Sat Dec 17 14:12:06 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1417.  
  1418.     * Makefile: New vars INSTALL and LIBS used in some rules;
  1419.     provide default defns plus commented-put defns for sysV.
  1420.  
  1421. Thu Nov 17 16:42:53 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1422.  
  1423.     * dir.c (dir_sort): Open-trouble not fatal; just say # files is -1.
  1424.     (diff_dirs): If dir_sort does that, give up and return 2.
  1425.  
  1426.     * diff.c (compare_files): Don't open directories.
  1427.     Don't close them specially either.
  1428.     Cross-propagate inf[i].dir_p sooner.
  1429.  
  1430. Sun Nov 13 11:19:36 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1431.  
  1432.     * diff.h: Declare index, rindex.
  1433.  
  1434.     * diff.c (compare_files): If comparing foodir with b/f,
  1435.     use foodir/f, not foodir/b/f.
  1436.  
  1437.     * diff.c (compare_files): Don't print "are identical" msg for 2 dirs.
  1438.     Status now 1 if one file is a dir and the other isn't, etc.
  1439.  
  1440. Thu Nov  3 16:30:24 1988  Randall Smith  (randy at gluteus.ai.mit.edu)
  1441.  
  1442.     * Makefile: Added a define for diff3 to define DIFF_PROGRAM.
  1443.  
  1444.     * util.c: Added hack to make sure that perror was not called with
  1445.     a null pointer.
  1446.  
  1447.     * diff.c: Changed S_IFDIR to S_IFMT in masking type of file bits
  1448.     out. 
  1449.  
  1450.     * diff3.c: Included USG compatibility defines.
  1451.  
  1452.     * diff.h: Moved sys/file.h into #else USG section (not needed or
  1453.     wanted on System V).
  1454.  
  1455.     * ed.c, analyze.c, context.c: Shortened names to 12 characters for
  1456.     the sake of System V (too simple not to do).
  1457.  
  1458. Local Variables:
  1459. mode: indented-text
  1460. left-margin: 8
  1461. version-control: never
  1462. End:
  1463.